From 5db1dad869aef7c1a1d1eba20e63b7871d78e11c Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 15 Dec 2015 23:55:23 -0500 Subject: [PATCH] paned: Initialize clip properly This was causing problems in the case when only one of the paned children is visible - we would use uninitialized memory, leading to invalide clip regions. Concretely, the signal tab in the inspector would sometimes not render at all. --- gtk/gtkpaned.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gtk/gtkpaned.c b/gtk/gtkpaned.c index 4aa918420f..531f5f0c70 100644 --- a/gtk/gtkpaned.c +++ b/gtk/gtkpaned.c @@ -1357,7 +1357,7 @@ gtk_paned_allocate (GtkCssGadget *gadget, GtkWidget *widget = gtk_css_gadget_get_owner (gadget); GtkPaned *paned = GTK_PANED (widget); GtkPanedPrivate *priv = paned->priv; - GtkAllocation clip; + GtkAllocation clip = { 0 }; if (priv->child1 && gtk_widget_get_visible (priv->child1) && priv->child2 && gtk_widget_get_visible (priv->child2)) @@ -1477,7 +1477,6 @@ gtk_paned_allocate (GtkCssGadget *gadget, child2_allocation.height = child2_height; } - gtk_css_gadget_allocate (priv->handle_gadget, &priv->handle_pos, -1, -- 2.30.2